Module:Torneko 3 GBA Monster Data Cell: Difference between revisions

MDFW - The Mystery Dungeon Tree of Information.
Jump to navigation Jump to search
(Created page with "-------------------------------------------------------------------------------- -- -- Module:Torneko 3 GBA Trap Data Cell -- -- This module covers a list of monsters in Japanese and the -- amount of experience points they drop present in -- Dragon Quest Characters: Torneko's Great Adventure 3 Advance: Mystery Dungeon. -- -- Parameters -- -- name: Insert the trap's English name there. -- -------------------------------------------------------------------------------...")
 
mNo edit summary
 
(One intermediate revision by the same user not shown)
Line 9: Line 9:
-- Parameters
-- Parameters
--
--
-- name: Insert the trap's English name there.
-- name: Insert the monster's English name there.
-- Returns the selected key below:
-- * ja: Returns the monster's Japanese name.
-- * exp: Returns the monster's experience points.
--
--
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------


return {
return {
["Slime"] = { ["ja"] = "スライム", ["exp"] = 2 },
["Slime"] = { ["ja"] = "スライム", ["exp"] = 2, ["recruit"] = "%" },
["She-Slime"] = { ["ja"] = "スライムベス", ["exp"] = 3, ["recruit"] = "%" },
["Dracky"] = { ["ja"] = "ドラキー ", ["exp"] = 3, ["recruit"] = "%" },
["MischievousMole"] = { ["ja"] = "いたずらもぐら", ["exp"] = 4, ["recruit"] = "%" },
}
}

Latest revision as of 16:17, 18 October 2024

Documentation for this module may be created at Module:Torneko 3 GBA Monster Data Cell/doc

--------------------------------------------------------------------------------
--
--						Module:Torneko 3 GBA Trap Data Cell
--
-- This module covers a list of monsters in Japanese and the
-- amount of experience points they drop present in
-- Dragon Quest Characters: Torneko's Great Adventure 3 Advance: Mystery Dungeon.
--
-- Parameters
--
-- name: Insert the monster's English name there.
-- Returns the selected key below:
-- * ja: Returns the monster's Japanese name.
-- * exp: Returns the monster's experience points.
--
--------------------------------------------------------------------------------

return {
	["Slime"] = { ["ja"] = "スライム", ["exp"] = 2, ["recruit"] = "%" },
	["She-Slime"] = { ["ja"] = "スライムベス", ["exp"] = 3, ["recruit"] = "%" },
	["Dracky"] = { ["ja"] = "ドラキー ", ["exp"] = 3, ["recruit"] = "%" },
	["MischievousMole"] = { ["ja"] = "いたずらもぐら", ["exp"] = 4, ["recruit"] = "%" },
}