Module:Adventure Squad Boss Data Cell
Jump to navigation
Jump to search
Documentation for this module may be created at Module:Adventure Squad Boss Data Cell/doc
--------------------------------------------------------------------------------
--
-- Module:Adventure Squad Boss Data Cell
--
-- This module covers a list of bosses in Japanese, their types and their moves
-- present in Pokémon Mystery Dungeon: Explorers of Time and Darkness.
--
-- 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.
--
--------------------------------------------------------------------------------
return {
-- Main story
["Arceus (Blazing Forme)"] = { ["ja"] = "アルセウス", ["type1"] = "Fire", ["recruit"] = "100%" },
["Arceus (Light Forme)"] = { ["ja"] = "アルセウス", ["type1"] = "Electric", ["recruit"] = "100%" },
["Arceus (Stormy Forme)"] = { ["ja"] = "アルセウス", ["type1"] = "Water", ["recruit"] = "100%" },
["Articuno"] = { ["ja"] = "フリーザー", ["type1"] = "Ice", ["type2"] = "Flying", ["recruit"] = "100%" },
["Celebi"] = { ["ja"] = "セレビィ", ["type1"] = "Psychic", ["type2"] = "Grass", ["recruit"] = "100%" },
["Dialga"] = { ["ja"] = "ディアルガ", ["type1"] = "Steel", ["type2"] = "Dragon", ["recruit"] = "100%" },
["Giratina (Altered Forme)"] = { ["ja"] = "ギラティナ", ["type1"] = "Ghost", ["type2"] = "Dragon", ["recruit"] = "100%" },
["Groudon"] = { ["ja"] = "グラードン", ["type1"] = "Ground", ["recruit"] = "100%" },
["Ho-Oh"] = { ["ja"] = "ホウオウ", ["type1"] = "Fire", ["type2"] = "Flying", ["recruit"] = "100%" },
["Kyogre"] = { ["ja"] = "カイオーガ", ["type1"] = "Water", ["recruit"] = "100%" },
["Lugia"] = { ["ja"] = "ルギア", ["type1"] = "Psychic", ["type2"] = "Flying", ["recruit"] = "100%" },
["Mewtwo"] = { ["ja"] = "ミュウツー", ["type1"] = "Psychic", ["recruit"] = "100%" },
["Moltres"] = { ["ja"] = "ファイヤー", ["type1"] = "Fire", ["type2"] = "Flying", ["recruit"] = "100%" },
["Rayquaza"] = { ["ja"] = "レックウザ", ["type1"] = "Dragon", ["type2"] = "Flying", ["recruit"] = "100%" },
["Regice"] = { ["ja"] = "レジアイス", ["type1"] = "Ice", ["recruit"] = "100%" },
["Regirock"] = { ["ja"] = "レジロック", ["type1"] = "Rock", ["recruit"] = "100%" },
["Registeel"] = { ["ja"] = "レジスチル", ["type1"] = "Steel", ["recruit"] = "100%" },
["Regigigas"] = { ["ja"] = "レジギガス", ["type1"] = "Normal", ["recruit"] = "100%" },
["Zapdos"] = { ["ja"] = "サンダー", ["type1"] = "Electric", ["recruit"] = "100%" },
}