1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00

56 lines
1014 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from "../../../interfaces"
import Set from "../SCA"
const card: Card = {
set: Set,
name: {
'zh-tw': "洛托姆"
},
illustrator: "ryoma uratsuka",
category: "Pokemon",
hp: 80,
types: ["Lightning"],
description: {
'zh-tw': "某位少年的發明促使人們開始製造各種活用洛托姆的機器。"
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
'zh-tw': "洛托選擇"
},
effect: {
'zh-tw': "在自己的回合當從手牌將這張卡放置於備戰區時可使用1次。從自己的牌庫選擇最多2張名稱中有「洛托姆」的物品卡在給對手看過後加入手牌。並且重洗牌庫。"
}
}],
attacks: [{
name: {
'zh-tw': "電擊"
},
effect: {
'zh-tw': "擲1次硬幣若為正面則將對手的戰鬥寶可夢【麻痺】。"
},
damage: 30,
cost: ["Lightning", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card