Module:Rescue Team Boss Data Cell: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
No edit summary |
||
Line 42: | Line 42: | ||
["Articuno (boss - post-credits)"] = { ["ja"] = "フリーザー", ["type1"] = "Ice", ["type2"] = "Flying", ["move1"] = "Gust", ["move2"] = "Agility", ["move3"] = "Mind Reader", ["move4"] = "Powder Snow", ["move5"] = "Mist", ["move6"] = "Ice Beam" }, | ["Articuno (boss - post-credits)"] = { ["ja"] = "フリーザー", ["type1"] = "Ice", ["type2"] = "Flying", ["move1"] = "Gust", ["move2"] = "Agility", ["move3"] = "Mind Reader", ["move4"] = "Powder Snow", ["move5"] = "Mist", ["move6"] = "Ice Beam" }, | ||
["Groudon (boss - post-credits)"] = { ["ja"] = "グラードン", ["type1"] = "Ground", ["move1"] = "Slash", ["move2"] = "Ancientpower", ["move3"] = "Scary Face", ["move4"] = "Earthquake", ["move5"] = "Bulk Up", ["move6"] = "Mud Shot" }, | ["Groudon (boss - post-credits)"] = { ["ja"] = "グラードン", ["type1"] = "Ground", ["move1"] = "Slash", ["move2"] = "Ancientpower", ["move3"] = "Scary Face", ["move4"] = "Earthquake", ["move5"] = "Bulk Up", ["move6"] = "Mud Shot" }, | ||
["Deoxys"] = { ["ja"] = "", ["type1"] = " | ["Deoxys"] = { ["ja"] = "デオキシス", ["type1"] = "Psychic", ["move1"] = "", ["move2"] = "", ["move3"] = "", ["move4"] = "" }, | ||
["Entei"] = { ["ja"] = "", ["type1"] = " | ["Entei"] = { ["ja"] = "エンテイ", ["type1"] = "Fire", ["move1"] = "", ["move2"] = "", ["move3"] = "", ["move4"] = "" }, | ||
["Ho-Oh"] = { ["ja"] = "", ["type1"] = "", ["type2"] = "", ["move1"] = "", ["move2"] = "", ["move3"] = "", ["move4"] = "" }, | ["Ho-Oh"] = { ["ja"] = "ホウオ", ["type1"] = "Fire", ["type2"] = "Flying", ["move1"] = "", ["move2"] = "", ["move3"] = "", ["move4"] = "" }, | ||
["Jirachi"] = { ["ja"] = "", ["type1"] = "", ["type2"] = "", ["move1"] = "", ["move2"] = "", ["move3"] = "", ["move4"] = "" }, | ["Jirachi"] = { ["ja"] = "ジラーチ", ["type1"] = "Steel", ["type2"] = "Psychic", ["move1"] = "", ["move2"] = "", ["move3"] = "", ["move4"] = "" }, | ||
["Kyogre"] = { ["ja"] = "", ["type1"] = " | ["Kyogre"] = { ["ja"] = "カイオーガ ", ["type1"] = "Water", ["move1"] = "", ["move2"] = "", ["move3"] = "", ["move4"] = "" }, | ||
["Latios"] = { ["ja"] = "", ["type1"] = "", ["type2"] = "", ["move1"] = "", ["move2"] = "", ["move3"] = "", ["move4"] = "" }, | ["Latios"] = { ["ja"] = "ラティオス ", ["type1"] = "Dragon", ["type2"] = "Psychic", ["move1"] = "", ["move2"] = "", ["move3"] = "", ["move4"] = "" }, | ||
["Lugia"] = { ["ja"] = "", ["type1"] = "", ["type2"] = "", ["move1"] = "", ["move2"] = "", ["move3"] = "", ["move4"] = "" }, | ["Lugia"] = { ["ja"] = "ルギア", ["type1"] = "Psychic", ["type2"] = "Flying", ["move1"] = "", ["move2"] = "", ["move3"] = "", ["move4"] = "" }, | ||
["Mewtwo"] = { ["ja"] = "", ["type1"] = " | ["Mewtwo"] = { ["ja"] = "ミュウツー", ["type1"] = "Psychic", ["move1"] = "", ["move2"] = "", ["move3"] = "", ["move4"] = "" }, | ||
["Raikou"] = { ["ja"] = "", ["type1"] = " | ["Raikou"] = { ["ja"] = "ライコウ", ["type1"] = "Electric", ["move1"] = "", ["move2"] = "", ["move3"] = "", ["move4"] = "" }, | ||
["Regice"] = { ["ja"] = "", ["type1"] = " | ["Regice"] = { ["ja"] = "レジアイス", ["type1"] = "Ice", ["move1"] = "Explosion", ["move2"] = "Curse", ["move3"] = "Superpower", ["move4"] = "Metal Claw" }, | ||
["Regirock"] = { ["ja"] = "", ["type1"] = " | ["Regirock"] = { ["ja"] = "レジロック", ["type1"] = "Rock", ["move1"] = "Rock Throw", ["move2"] = "Explosion", ["move3"] = "Curse" }, | ||
["Registeel"] = { ["ja"] = "", ["type1"] = " | ["Registeel"] = { ["ja"] = "レジスチル", ["type1"] = "Steel", ["move1"] = "Icy Wind", ["move2"] = "Explosion", ["move3"] = "Curse" }, | ||
["Suicune"] = { ["ja"] = "", ["type1"] = " | ["Suicune"] = { ["ja"] = "スイクン", ["type1"] = "Water", ["move2"] = "", ["move3"] = "", ["move4"] = "" } | ||
} | } | ||
Revision as of 17:23, 4 August 2023
Documentation for this module may be created at Module:Rescue Team Boss Data Cell/doc
--------------------------------------------------------------------------------
--
-- Module:Rescue Team Boss Data Cell
--
-- This module covers a list of bosses in Japanese, their types and their moves
-- present in Pokémon Mystery Dungeon: Rescue Team.
--
-- Parameters
--
-- name: Insert the Pokémon's English name there.
-- getVar: Picks which key the module should return.
-- * ja: Returns the Pokémon's Japanese name.
-- * type1: Returns the Pokémon's first type.
-- * type2: Returns the Pokémon's second type.
-- * move<n>: Returns the Pokémon's numbered move (up to 9).
-- * recruit: Returns the Pokémon's recruit chance.
--
--------------------------------------------------------------------------------
p = {}
function p.rescueTeamBossDataCell(f)
-- Gets the arguments from #invoke:Rescue Team Boss Data Cell|rescueTeamBossDataCell
local args = f.args
-- List of every boss's Japanese names, types, moves, and recruit chances
local list = {
-- Main story
["Skarmory"] = { ["ja"] = "エアームド", ["type1"] = "Steel", ["type2"] = "Flying", ["move1"] = "Sand-Attack", ["move2"] = "Peck", ["move3"] = "Leer" },
["Gengar"] = { ["ja"] = "ゲンガー", ["type1"] = "Ghost", ["type2"] = "Poison", ["move1"] = "Curse", ["move2"] = "Lick", ["move3"] = "Spite", ["move4"] = "Hypnosis" },
["Ekans"] = { ["ja"] = "アーボ", ["type1"] = "Poison", ["move1"] = "Bite", ["move2"] = "Wrap", ["move3"] = "Leer", ["move4"] = "Poison Sting" },
["Medicham"] = { ["ja"] = "チャーレム", ["type1"] = "Fighting", ["type2"] = "Psychic", ["move1"] = "Ice Punch", ["move2"] = "Thunderpunch", ["move3"] = "Detect", ["move4"] = "Confusion" },
["Zapdos"] = { ["ja"] = "サンダー", ["type1"] = "Electric", ["type2"] = "Flying", ["move1"] = "Agility", ["move2"] = "Peck", ["move3"] = "Thundershock", ["move4"] = "Thunder Wave" },
["Mankey Gang"] = { ["ja"] = "マンキー", ["type1"] = "Fighting", ["move1"] = "Karate Chop", ["move2"] = "Low Kick", ["move3"] = "Leer", ["move4"] = "Scratch" },
["Moltres"] = { ["ja"] = "ファイヤー", ["type1"] = "Fire", ["type2"] = "Flying", ["move1"] = "Agility", ["move2"] = "Wing Attack", ["move3"] = "Ember", ["move4"] = "Fire Spin" },
["Articuno"] = { ["ja"] = "フリーザー", ["type1"] = "Ice", ["type2"] = "Flying", ["move1"] = "Gust", ["move2"] = "Agility", ["move3"] = "Powder Snow", ["move4"] = "Mist" },
["Groudon"] = { ["ja"] = "グラードン", ["type1"] = "Ground", ["move1"] = "Slash", ["move2"] = "Ancientpower", ["move3"] = "Scary Face", ["move4"] = "Mud Shot" },
["Rayquaza"] = { ["ja"] = "レックウザ", ["type1"] = "Dragon", ["type2"] = "Flying", ["move1"] = "Crunch", ["move2"] = "Ancientpower", ["move3"] = "Scary Face", ["move4"] = "Fly", ["move5"] = "Twister", ["move6"] = "Dragon Claw", ["move7"] = "Dragon Dance" },
-- Post-credits
["Zapdos (boss - post-credits)"] = { ["ja"] = "サンダー", ["type1"] = "Electric", ["type2"] = "Flying", ["move1"] = "Thundershock", ["move2"] = "Detect", ["move3"] = "Drill Peck", ["move4"] = "Thunder" },
["Moltres (boss - post-credits)"] = { ["ja"] = "ファイヤー", ["type1"] = "Fire", ["type2"] = "Flying", ["move1"] = "Flamethrower", ["move2"] = "Agility", ["move3"] = "Endure", ["move4"] = "Wing Attack", ["move5"] = "Ember", ["move6"] = "Fire Spin" },
["Articuno (boss - post-credits)"] = { ["ja"] = "フリーザー", ["type1"] = "Ice", ["type2"] = "Flying", ["move1"] = "Gust", ["move2"] = "Agility", ["move3"] = "Mind Reader", ["move4"] = "Powder Snow", ["move5"] = "Mist", ["move6"] = "Ice Beam" },
["Groudon (boss - post-credits)"] = { ["ja"] = "グラードン", ["type1"] = "Ground", ["move1"] = "Slash", ["move2"] = "Ancientpower", ["move3"] = "Scary Face", ["move4"] = "Earthquake", ["move5"] = "Bulk Up", ["move6"] = "Mud Shot" },
["Deoxys"] = { ["ja"] = "デオキシス", ["type1"] = "Psychic", ["move1"] = "", ["move2"] = "", ["move3"] = "", ["move4"] = "" },
["Entei"] = { ["ja"] = "エンテイ", ["type1"] = "Fire", ["move1"] = "", ["move2"] = "", ["move3"] = "", ["move4"] = "" },
["Ho-Oh"] = { ["ja"] = "ホウオ", ["type1"] = "Fire", ["type2"] = "Flying", ["move1"] = "", ["move2"] = "", ["move3"] = "", ["move4"] = "" },
["Jirachi"] = { ["ja"] = "ジラーチ", ["type1"] = "Steel", ["type2"] = "Psychic", ["move1"] = "", ["move2"] = "", ["move3"] = "", ["move4"] = "" },
["Kyogre"] = { ["ja"] = "カイオーガ ", ["type1"] = "Water", ["move1"] = "", ["move2"] = "", ["move3"] = "", ["move4"] = "" },
["Latios"] = { ["ja"] = "ラティオス ", ["type1"] = "Dragon", ["type2"] = "Psychic", ["move1"] = "", ["move2"] = "", ["move3"] = "", ["move4"] = "" },
["Lugia"] = { ["ja"] = "ルギア", ["type1"] = "Psychic", ["type2"] = "Flying", ["move1"] = "", ["move2"] = "", ["move3"] = "", ["move4"] = "" },
["Mewtwo"] = { ["ja"] = "ミュウツー", ["type1"] = "Psychic", ["move1"] = "", ["move2"] = "", ["move3"] = "", ["move4"] = "" },
["Raikou"] = { ["ja"] = "ライコウ", ["type1"] = "Electric", ["move1"] = "", ["move2"] = "", ["move3"] = "", ["move4"] = "" },
["Regice"] = { ["ja"] = "レジアイス", ["type1"] = "Ice", ["move1"] = "Explosion", ["move2"] = "Curse", ["move3"] = "Superpower", ["move4"] = "Metal Claw" },
["Regirock"] = { ["ja"] = "レジロック", ["type1"] = "Rock", ["move1"] = "Rock Throw", ["move2"] = "Explosion", ["move3"] = "Curse" },
["Registeel"] = { ["ja"] = "レジスチル", ["type1"] = "Steel", ["move1"] = "Icy Wind", ["move2"] = "Explosion", ["move3"] = "Curse" },
["Suicune"] = { ["ja"] = "スイクン", ["type1"] = "Water", ["move2"] = "", ["move3"] = "", ["move4"] = "" }
}
-- Returns the selected boss with the object's specified key value
return list[args.name][args.getVar]
end
return p