Module:Adventure Squad Boss Data Cell: Difference between revisions

MDFW - The Mystery Dungeon Tree of Information.
Jump to navigation Jump to search
No edit summary
No edit summary
Line 23: Line 23:
["Arceus (Light Forme)"] = { ["ja"] = "アルセウス", ["type1"] = "Electric" },
["Arceus (Light Forme)"] = { ["ja"] = "アルセウス", ["type1"] = "Electric" },
["Arceus (Stormy Forme)"] = { ["ja"] = "アルセウス", ["type1"] = "Water" },
["Arceus (Stormy Forme)"] = { ["ja"] = "アルセウス", ["type1"] = "Water" },
["Articuno"] = { ["ja"] = "フリーザー", ["type1"] = "Ice", ["type2"] = "Flying" },
["Celebi"] = { ["ja"] = "セレビィ", ["type1"] = "Psychic", ["type2"] = "Grass" },
["Celebi"] = { ["ja"] = "セレビィ", ["type1"] = "Psychic", ["type2"] = "Grass" },
["Dialga"] = { ["ja"] = "ディアルガ", ["type1"] = "Steel", ["type2"] = "Dragon" },
["Dialga"] = { ["ja"] = "ディアルガ", ["type1"] = "Steel", ["type2"] = "Dragon" },
["Rayquaza"] = { ["ja"] = "レックウザ", ["type1"] = "Dragon", ["type2"] = "Flying" },
["Rayquaza"] = { ["ja"] = "レックウザ", ["type1"] = "Dragon", ["type2"] = "Flying" },
["Giratina (Altered Forme)"] = { ["ja"] = "ギラティナ", ["type1"] = "Ghost", ["type2"] = "Dragon" },
["Giratina (Altered Forme)"] = { ["ja"] = "ギラティナ", ["type1"] = "Ghost", ["type2"] = "Dragon" },
["Kyogre"] = { ["ja"] = "カイオーガ", ["type1"] = "Water" },
["Lugia"] = { ["ja"] = "ルギア", ["type1"] = "Psychic", ["type2"] = "Flying" },
["Mewtwo"] = { ["ja"] = "ミュウツー", ["type1"] = "Psychic" },
["Mewtwo"] = { ["ja"] = "ミュウツー", ["type1"] = "Psychic" },
["Regirock"] = { ["ja"] = "レジロック", ["type1"] = "Rock" },
["Registeel"] = { ["ja"] = "レジスチル", ["type1"] = "Steel" },
["Registeel"] = { ["ja"] = "レジスチル", ["type1"] = "Steel" },
["Regigigas"] = { ["ja"] = "レジギガス", ["type1"] = "Normal" },
["Regigigas"] = { ["ja"] = "レジギガス", ["type1"] = "Normal" },
["Zapdos"] = { ["ja"] = "サンダー", ["type1"] = "Electric" },
["Zapdos"] = { ["ja"] = "サンダー", ["type1"] = "Electric" },
}
}

Revision as of 05:06, 7 November 2024

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" },
	["Arceus (Light Forme)"] = { ["ja"] = "アルセウス", ["type1"] = "Electric" },
	["Arceus (Stormy Forme)"] = { ["ja"] = "アルセウス", ["type1"] = "Water" },
	["Articuno"] = { ["ja"] = "フリーザー", ["type1"] = "Ice", ["type2"] = "Flying" },
	["Celebi"] = { ["ja"] = "セレビィ", ["type1"] = "Psychic", ["type2"] = "Grass" },
	["Dialga"] = { ["ja"] = "ディアルガ", ["type1"] = "Steel", ["type2"] = "Dragon" },
	["Rayquaza"] = { ["ja"] = "レックウザ", ["type1"] = "Dragon", ["type2"] = "Flying" },
	["Giratina (Altered Forme)"] = { ["ja"] = "ギラティナ", ["type1"] = "Ghost", ["type2"] = "Dragon" },
	["Kyogre"] = { ["ja"] = "カイオーガ", ["type1"] = "Water" },
	["Lugia"] = { ["ja"] = "ルギア", ["type1"] = "Psychic", ["type2"] = "Flying" },
	["Mewtwo"] = { ["ja"] = "ミュウツー", ["type1"] = "Psychic" },
	["Regirock"] = { ["ja"] = "レジロック", ["type1"] = "Rock" },
	["Registeel"] = { ["ja"] = "レジスチル", ["type1"] = "Steel" },
	["Regigigas"] = { ["ja"] = "レジギガス", ["type1"] = "Normal" },
	["Zapdos"] = { ["ja"] = "サンダー", ["type1"] = "Electric" },
}