Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local movedex = {
- {"Selfdestruct", 200, 100, 2},
- {"HyperBeam", 150, 100, 2},
- {"Superpower", 140, 100, 8},
- {"CloseCombat", 120, 100, 8},
- {"Judgement", 120, 100, 2},
- {"RockBottom", 120, 100, 14},
- {"ShadowForce", 120, 100, 15},
- {"SkyAttack", 120, 100, 11},
- {"SolarBeam", 120, 100, 6},
- {"VoltTackle", 120, 100, 5},
- {"Psystrike", 110, 100, 12},
- {"Aeroblast", 100, 100, 11},
- {"DarkVoid", 100, 100, 17},
- {"DracoMeteor", 100, 100, 16},
- {"SacredFire", 100, 100, 3},
- {"DragonPulse", 90, 100, 16},
- {"Earthquake", 90, 100, 10},
- {"Flamethrower", 90, 100, 4},
- {"Moonblast", 90, 100, 19},
- {"Psychic", 90, 100, 12},
- {"SludgeBomb", 90, 100, 9},
- {"Surf", 90, 100, 4},
- {"Thunderbolt", 90, 100, 5},
- {"AuraSphere", 80, 100, 8},
- {"DarkPulse", 80, 100, 17},
- {"DrillPeck", 80, 100, 11},
- {"FlashCannon", 80, 100, 18},
- {"HyperFang", 80, 100, 2},
- {"ShadowBall", 80, 100, 15},
- {"AirSlash", 75, 100, 11},
- {"AuroraBeam", 75, 100, 7},
- {"Bubblebeam", 75, 100, 4},
- {"MagicLeaf", 75, 100, 6},
- {"Psybeam", 75, 100, 12},
- {"RockBlast", 75, 100, 14},
- {"SignalBeam", 75, 100, 13},
- {"Thunderpunch", 75, 100, 5},
- {"BodySlam", 70, 100, 2},
- {"DazzlingGleam", 70, 100, 19},
- {"ExtremeSpeed", 70, 100, 2},
- {"NightSlash", 70, 100, 17},
- {"ShadowClaw", 70, 100, 15},
- {"Slash", 70, 100, 2},
- {"X-Scissor", 70, 100, 13},
- {"AncientPower", 65, 100, 14},
- {"FeignedSlash", 65, 100, 2},
- {"DoubleKick", 60, 100, 8},
- {"Acid", 60, 100, 9},
- {"Bite", 60, 100, 17},
- {"BulletPunch", 60, 100, 18},
- {"Dragonbreath", 60, 100, 16},
- {"FuryCutter", 60, 100, 13},
- {"HornAttack", 60, 100, 2},
- {"IcyWind", 60, 100, 7},
- {"MetalClaw", 60, 100, 18},
- {"RockThrow", 60, 100, 14},
- {"PayDay", 60, 100, 2},
- {"Gust", 55, 100, 11},
- {"RazorLeaf", 55, 100, 6},
- {"SpatialRend", 55, 100, 16},
- {"Confusion", 50, 100, 12},
- {"Ember", 50, 100, 3},
- {"KarateChop", 50, 100, 8},
- {"QuickAttack", 50, 100, 2},
- {"Bubble", 40, 100, 4},
- {"FairyWind", 40, 100, 19},
- {"Pound", 40, 100, 2},
- {"Scratch", 40, 100, 2},
- {"Tackle", 40, 100, 2},
- {"Thundershock", 40, 100, 5},
- {"WaterGun", 40, 100, 4},
- {"PoisonSting", 35, 100, 9},
- {"LeechLife", 30, 100, 13},
- {"Lick", 30, 100, 15},
- {"BlastBurn", 140, 95, 3},
- {"FrenzyPlant", 140, 95, 6},
- {"HydroCannon", 140, 95, 4},
- {"RoarOfTime", 140, 95, 16},
- {"RockWrecker", 140, 95, 14},
- {"PsychoBoost", 130, 95, 12},
- {"PlayRough", 70, 95, 19},
- {"LeafStorm", 130, 90, 6},
- {"Overheat", 130, 90, 3},
- {"HighJumpKick", 100, 90, 8},
- {"MeteorMash", 85, 90, 18},
- {"SeedFlare", 120, 85, 6},
- {"Blizzard", 120, 80, 7},
- {"FireBlast", 120, 80, 3},
- {"HydroPump", 110, 80, 4},
- {"Thunder", 110, 80, 5},
- {"DragonRush", 100, 80, 16},
- {"IronTail", 100, 80, 18},
- {"FocusBlast", 120, 70, 8},
- {"ZapCannon", 140, 60, 5},
- {"DrainingKiss", 70, 100, 19},
- {"MegaDrain", 60, 100, 6},
- {"Absorb", 30, 100, 6},
- {"FoulPlay", 95, 100, 17},
- {"SuperFang", 0, 100, 2},
- {"Recover", 0, 100, 2},
- {"Soft-Boiled", 0, 100, 2},
- {"Rest", 0, 100, 12},
- {"nil", 0, 0, 1}
- }
- print("local movedex = {")
- for i, data in ipairs(movedex) do
- local myMove = data[1]
- for n = string.len(myMove), 1, -1 do
- if string.sub(myMove, n, n) == " " then myMove = string.sub(myMove, 1, n-1)..string.sub(myMove, n+1) end
- end
- print("\t[\""..myMove.."\"] = {"..data[2]..", "..data[3]..", "..data[4].."},")
- end
- print("}")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement